home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #2 / Ham Radio 2000 - Volume 2.iso / HAMV2 / ANTENNA / YAGIU112 / U_YAGI.C < prev    next >
C/C++ Source or Header  |  1995-08-27  |  882b  |  18 lines

  1. #include <stdio.h>
  2. #include "yagi.h"
  3.  
  4. void usage_yagi(char *exefile)
  5. {
  6.     
  7.         fprintf(stderr,"\nYagiUda antenna analysis programs, version %.2lf\n", version());
  8.         fprintf(stderr,"Written by David Kirkby BSc MSc G8WRB (email:davek@medphys.ucl.ac.uk)\n");
  9.         fprintf(stderr, "\nUSAGE: %s  [-hs] filename \n\n", exefile);
  10.         fprintf(stderr, "Where options are:\n");
  11.         fprintf(stderr, "   -d     Display  bar-graphs, proportional to element currents\n");
  12.         fprintf(stderr, "   -h     Print this help screen\n");
  13.         fprintf(stderr, "   -s     Suppress diagnostic output\n");
  14.         fprintf(stderr, "   -p     Print Z matrix to screen.\n");
  15.         fprintf(stderr, "'yagi' computes the currents at the centre of of each element of an antenna \ndescribed in 'filename', where 'filename' was created by 'input' or 'first'.\n");
  16.         fprintf(stderr, "After running 'yagi filename' type 'output filename'\n");
  17. }
  18.